From df71ef8ba16892e2d5813de3cf4d424cbc24154a Mon Sep 17 00:00:00 2001 From: Alastair Tse Date: Thu, 5 Oct 2006 18:22:13 +0100 Subject: [PATCH] [XM] Add missing parameter to XM XMLRPC call so that we get the devices in xm list --long Signed-off-by: Alastair Tse --- tools/python/xen/xm/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/python/xen/xm/main.py b/tools/python/xen/xm/main.py index 6827eae043..b14afcc8cc 100644 --- a/tools/python/xen/xm/main.py +++ b/tools/python/xen/xm/main.py @@ -485,7 +485,7 @@ def getDomains(domain_names, full = 0): if domain_names: return [server.xend.domain(dom, full) for dom in domain_names] else: - return server.xend.domains(1) + return server.xend.domains(1, full) def xm_list(args): -- 2.30.2